home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 123 / MacAddict_123_2006_11.iso / Software / Productivity / iClip lite 2.wdgt / js / events.js < prev    next >
Text File  |  2006-08-04  |  213b  |  9 lines

  1. // Copyright ¬© 2006, Inventive. //
  2.  
  3. // functions //
  4.     function addEvent(obj, type, capture, funct) {
  5.         if (obj != null) {
  6.             if (obj.addEventListener)
  7.                 obj.addEventListener(type, funct, capture);
  8.         }
  9.     }